home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / mandrake_MDKSA-2004-113.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  67 lines

  1. #
  2. # (C) Tenable Network Security
  3. #
  4. # This plugin text was extracted from Mandrake Linux Security Advisory MDKSA-2004:113
  5. #
  6.  
  7.  
  8. if ( ! defined_func("bn_random") ) exit(0);
  9. if(description)
  10. {
  11.  script_id(15548);
  12.  script_version ("$Revision: 1.1 $");
  13.  script_cve_id("CAN-2004-0888", "CAN-2004-0889");
  14.  
  15.  name["english"] = "MDKSA-2004:113: xpdf";
  16.  
  17.  script_name(english:name["english"]);
  18.  
  19.  desc["english"] = "
  20. The remote host is missing the patch for the advisory MDKSA-2004:113 (xpdf).
  21.  
  22.  
  23. Chris Evans discovered numerous vulnerabilities in the xpdf package:
  24. Multiple integer overflow issues affecting xpdf-2.0 and xpdf-3.0. Also programs
  25. like cups which have embedded versions of xpdf. These can result in writing an
  26. arbitrary byte to an attacker controlled location which probably could lead to
  27. arbitrary code execution. (CAN-2004-0888)
  28. Multiple integer overflow issues affecting xpdf-3.0 only. These can result in
  29. DoS or possibly arbitrary code execution. (CAN-2004-0889)
  30. Chris also discovered issues with infinite loop logic error affecting xpdf-3.0
  31. only.
  32. The updated packages are patched to deal with these issues.
  33.  
  34.  
  35. Solution : http://www.mandrakesoft.com/security/advisories?name=MDKSA-2004:113
  36. Risk factor : High";
  37.  
  38.  
  39.  
  40.  script_description(english:desc["english"]);
  41.  
  42.  summary["english"] = "Check for the version of the xpdf package";
  43.  script_summary(english:summary["english"]);
  44.  
  45.  script_category(ACT_GATHER_INFO);
  46.  
  47.  script_copyright(english:"This script is Copyright (C) 2004 Tenable Network Security");
  48.  family["english"] = "Mandrake Local Security Checks";
  49.  script_family(english:family["english"]);
  50.  
  51.  script_dependencies("ssh_get_info.nasl");
  52.  script_require_keys("Host/Mandrake/rpm-list");
  53.  exit(0);
  54. }
  55.  
  56. include("rpm.inc");
  57. if ( rpm_check( reference:"xpdf-3.00-5.2.100mdk", release:"MDK10.0", yank:"mdk") )
  58. {
  59.  security_hole(0);
  60.  exit(0);
  61. }
  62. if (rpm_exists(rpm:"xpdf-", release:"MDK10.0") )
  63. {
  64.  set_kb_item(name:"CAN-2004-0888", value:TRUE);
  65.  set_kb_item(name:"CAN-2004-0889", value:TRUE);
  66. }
  67.